home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_400 / 424_02 / ED-157 / library.h < prev    next >
Text File  |  1993-09-10  |  333b  |  16 lines

  1. /* Included by: HELP HELP_GET_KEYWORD HELP_LOAD */
  2. typedef struct subtopic_str *subtopic_ptr;
  3. typedef struct topic_str *topic_ptr;
  4. typedef struct topic_str
  5. {
  6.     subtopic_ptr first;
  7.     topic_ptr parent;
  8.     Char *topic,*text;
  9. } topic_node;
  10. typedef struct subtopic_str
  11. {
  12.     subtopic_ptr next;
  13.     topic_ptr child;
  14.     Char *keyword;
  15. } subtopic_node;
  16.